library(tidyverse)
library(magrittr)
library(dplyr)
library(gganimate)
library(av)
library(gifski)
library(ggthemes)
library(babynames) # using the babynames

Introduction

To start off, we’re using a package called babynames. I used it in a previous data science class in high school, so I’m pretty familiar with it.

It has the variables year, sex, name, n, prop.

  1. year: the year of the name
  2. sex: the gender of the baby, either M for male and F for female in this dataset
  3. name: the name of the baby
  4. n: the number of babies with that name in that year
  5. prop: the proportion of all babies with that name in one year

Breaking Down the Data

Acknowledgments

Thank you so so much to Emily for helping me with my graphs and everything; truly helpful and I could not go anywhere without her patience.